home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992…ugust: Hack to the Future / ADC Developer CD (1992-08) (''Hack To The Future'')_iso / Dev.CD 199208.iso / Periodicals / develop / develop 9 code / EchoBox / 2BufRecordToBufCmd.r < prev    next >
Encoding:
Text File  |  1992-01-06  |  1.3 KB  |  77 lines  |  [TEXT/MPS ]

  1. /*______________________________________________________*/
  2. /*                      Sound I/O Demo                    */
  3. /*                          by                          */
  4. /*                  RICHARD P. COLLYER                  */
  5. /*              Developer Technical Support             */
  6. /*                 Apple Computer, Inc.                 */
  7. /*                       11/14/91                       */
  8. /*______________________________________________________*/
  9.  
  10. #include "Types.r"
  11.  
  12. resource 'DITL' (128) {
  13.     {    /* array DITLarray: 5 elements */
  14.         /* [1] */
  15.         {90, 124, 110, 182},
  16.         Button {
  17.             enabled,
  18.             "OK"
  19.         },
  20.         /* [2] */
  21.         {10, 63, 62, 309},
  22.         StaticText {
  23.             disabled,
  24.             ""
  25.         },
  26.         /* [3] */
  27.         {20, 18, 52, 50},
  28.         Icon {
  29.             disabled,
  30.             0
  31.         },
  32.         /* [4] */
  33.         {65, 63, 82, 162},
  34.         StaticText {
  35.             disabled,
  36.             "The Error Was:"
  37.         },
  38.         /* [5] */
  39.         {65, 165, 81, 240},
  40.         StaticText {
  41.             disabled,
  42.             ""
  43.         }
  44.     }
  45. };
  46.  
  47. resource 'DLOG' (128) {
  48.     {40, 40, 157, 352},
  49.     documentProc,
  50.     visible,
  51.     goAway,
  52.     0x0,
  53.     128,
  54.     ""
  55. };
  56.  
  57. resource 'SIZE' (0) {
  58.     reserved,
  59.     ignoreSuspendResumeEvents,
  60.     reserved,
  61.     cannotBackground,
  62.     notMultiFinderAware,
  63.     backgroundAndForeground,
  64.     dontGetFrontClicks,
  65.     ignoreChildDiedEvents,
  66.     is32BitCompatible,
  67.     notHighLevelEventAware,
  68.     onlyLocalHLEvents,
  69.     notStationeryAware,
  70.     dontUseTextEditServices,
  71.     reserved,
  72.     reserved,
  73.     reserved,
  74.     128000,
  75.     128000
  76. };
  77.